home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / rloginPseudoDev.h < prev    next >
C/C++ Source or Header  |  1992-04-21  |  909b  |  30 lines

  1. /*
  2.  * rloginPseudoDev.h --
  3.  *
  4.  *    Shared declarations for programs that deal with remote login
  5.  *    pseudo-devices.
  6.  *
  7.  * Copyright 1992 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that this copyright
  11.  * notice appears in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/lib/include/RCS/rloginPseudoDev.h,v 1.1 92/04/21 17:32:16 kupfer Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _RLOGINPSEUDODEV
  20. #define _RLOGINPSEUDODEV
  21.  
  22. /* 
  23.  * Remote logins create a pseudo-device named ttyXXX, where XXX is some 
  24.  * number to uniquify the name.
  25.  */
  26.  
  27. #define RLOGIN_PDEV_NAME    "tty"
  28.  
  29. #endif /* _RLOGINPSEUDODEV */
  30.